home *** CD-ROM | disk | FTP | other *** search
/ PCGUIA 2010 Software/Programs / PCGuia_programas.iso / Software / Utils / Advanced SystemCare / asc-setup.exe / {app} / tb / chrome / iobitcom.jar / content / manageMenu.xul < prev    next >
Encoding:
Extensible Markup Language  |  2009-12-23  |  1.8 KB  |  46 lines

  1. <?xml version="1.0"?>
  2.  
  3. <?xml-stylesheet href="chrome://global/skin/" type="text/css"?>
  4. <?xml-stylesheet href="chrome://iobitcom/skin/ebdialogstyle.css" type="text/css"?>
  5.  
  6. <dialog
  7.     id="ebManageMenuID"
  8.     windowtype="EBManageMenu_CT2384137" 
  9.     xmlns="http://www.mozilla.org/keymaster/gatekeeper/there.is.only.xul" 
  10.     xmlns:html="http://www.w3.org/1999/xhtml" 
  11.     onload="EBUserMenuItemsDialog_CT2384137.OnLoad(event);" 
  12.     onunload=""
  13.     buttons="accept, cancel"
  14.     ondialogaccept="EBUserMenuItemsDialog_CT2384137.OnAccept(event)">
  15.  
  16.   <script type="application/x-javascript"  src="chrome://iobitcom/content/ctoolbar.js"/>
  17.  
  18.   <vbox>
  19.     <label id="lblTitle" value="Stuff you've added" style="font-weight:bold" />
  20.     <hbox>
  21.       <spacer width="25" />
  22.       <description id="dscTitle">
  23.         You can choose which of these items to keep or remove from the toolbar.
  24.       </description>
  25.     </hbox>
  26.     
  27.     <separator class="groove" style="margin-top:5px; margin-bottom:10px"/>
  28.     <hbox>
  29.       <listbox id="listMenuItems" rows="10" width="360"
  30.                                          onselect="EBUserMenuItemsDialog_CT2384137.Listbox_OnSelect(event)"
  31.                                          onkeypress="EBUserMenuItemsDialog_CT2384137.Listbox_OnKeypress(event)">
  32.         <listcols id="listcolsMenuItems">
  33.           <listcol flex="0"/>
  34.         </listcols>
  35.       </listbox>
  36.       <vbox>
  37.         <button id="btnDelete" label="Delete" onclick="EBUserMenuItemsDialog_CT2384137.OnDelete()"/>
  38.         <spacer height="25" />
  39.         <button id="btnUp" image="chrome://global/skin/arrow/arrow-up-sharp.gif" oncommand="EBUserMenuItemsDialog_CT2384137.MoveUp(event)" />
  40.         <button id="btnDown" image="chrome://global/skin/arrow/arrow-dn-sharp.gif" oncommand="EBUserMenuItemsDialog_CT2384137.MoveDown(event)" />
  41.       </vbox>
  42.     </hbox>
  43.   </vbox>
  44.   
  45. </dialog>
  46.